home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / dev / audio.h < prev    next >
C/C++ Source or Header  |  1990-04-12  |  1KB  |  39 lines

  1. /*
  2.  * audio.h --
  3.  *
  4.  *    This file defines the device-dependent IOControl calls and related
  5.  *    structures for audio devices, which are used on Sparc's.
  6.  *
  7.  * Copyright 1990 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/lib/include/dev/RCS/audio.h,v 1.2 89/07/18 17:21:30 ouster Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _AUDIO
  20. #define _AUDIO
  21.  
  22. /*
  23.  * Constants:  these are the IOControl operations defined for audio.
  24.  */
  25.  
  26. #define IOC_AUDIO (13 << 16)
  27.  
  28. #define IOC_AUDIO_GETREG    (IOC_AUDIO | 0x1)
  29. #define IOC_AUDIO_SETREG    (IOC_AUDIO | 0x2)
  30. #define IOC_AUDIO_READSTART    (IOC_AUDIO | 0x3)
  31. #define IOC_AUDIO_STOP        (IOC_AUDIO | 0x4)
  32. #define IOC_AUDIO_PAUSE        (IOC_AUDIO | 0x5)
  33. #define IOC_AUDIO_RESUME    (IOC_AUDIO | 0x6)
  34. #define IOC_AUDIO_READQ        (IOC_AUDIO | 0x7)
  35. #define IOC_AUDIO_WRITEQ    (IOC_AUDIO | 0x8)
  36. #define IOC_AUDIO_GETQSIZE    (IOC_AUDIO | 0x9)
  37. #define IOC_AUDIO_SETQSIZE    (IOC_AUDIO | 0xa)
  38. #endif _AUDIO
  39.